box.schema.user.create() | Tarantool

box.schema.user.create()

box.schema.user.create(name[, {options}])

Create a user. For explanation of how Tarantool maintains user data, see section Users and reference on _user space.

The possible options are:

  • if_not_exists = true|false (default = false) - boolean; true means there should be no error if the user already exists,
  • password (default = ‘’) - string; the password = password specification is good because in a URI (Uniform Resource Identifier) it is usually illegal to include a user-name without a password.

Note

The maximum number of users is 32.

Parameters:
Return:

nil

Examples:

box.schema.user.create('testuser')
box.schema.user.create('testuser', {password = 'foobar'})
box.schema.user.create('testuser', {if_not_exists = false})
Found what you were looking for?
Feedback